-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
activityLogAlerts_API.json
540 lines (540 loc) · 19 KB
/
activityLogAlerts_API.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
{
"swagger": "2.0",
"info": {
"title": "Azure Activity Log Alerts API",
"description": "API for Azure Activity Log Alert rules CRUD operations.",
"version": "2020-10-01",
"x-ms-code-generation-settings": {
"name": "MonitorManagementClient"
}
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/activityLogAlerts/{activityLogAlertName}": {
"put": {
"description": "Create a new Activity Log Alert rule or update an existing one.",
"operationId": "ActivityLogAlerts_CreateOrUpdate",
"x-ms-examples": {
"Create or update an Activity Log Alert rule": {
"$ref": "./examples/ActivityLogAlertRule_CreateOrUpdate.json"
},
"Create or update an Activity Log Alert rule with 'anyOf' condition": {
"$ref": "./examples/ActivityLogAlertRule_CreateOrUpdateRuleWithAnyOfCondition.json"
},
"Create or update an Activity Log Alert rule with 'containsAny'": {
"$ref": "./examples/ActivityLogAlertRule_CreateOrUpdateRuleWithContainsAny.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ActivityLogAlertNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"name": "activityLogAlertRule",
"description": "The Activity Log Alert rule to create or use for the update.",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
}
],
"responses": {
"200": {
"description": "An existing Activity Log Alert rule was successfully updated.",
"schema": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
},
"201": {
"description": "A new Activity Log Alert rule was successfully created.",
"schema": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
},
"default": {
"description": "An error occurred and the Activity Log Alert rule could not be created or updated.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"get": {
"description": "Get an Activity Log Alert rule.",
"operationId": "ActivityLogAlerts_Get",
"x-ms-examples": {
"Get an Activity Log Alert rule": {
"$ref": "./examples/ActivityLogAlertRule_Get.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ActivityLogAlertNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The request succeeded.",
"schema": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
},
"default": {
"description": "An error occurred and the Activity Log Alert rule could not be retrieved.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"delete": {
"description": "Delete an Activity Log Alert rule.",
"operationId": "ActivityLogAlerts_Delete",
"x-ms-examples": {
"Delete an Activity Log Alert rule": {
"$ref": "./examples/ActivityLogAlertRule_Delete.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ActivityLogAlertNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The Activity Log Alert rule was successfully deleted."
},
"204": {
"description": "The Activity Log Alert rule does not exist. It may have already been deleted."
},
"default": {
"description": "An error occurred and the Activity Log Alert rule could not be deleted.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"patch": {
"description": "Updates 'tags' and 'enabled' fields in an existing Alert rule. This method is used to update the Alert rule tags, and to enable or disable the Alert rule. To update other fields use CreateOrUpdate operation.",
"operationId": "ActivityLogAlerts_Update",
"x-ms-examples": {
"Patch an Activity Log Alert rule": {
"$ref": "./examples/ActivityLogAlertRule_Update.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ActivityLogAlertNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"name": "activityLogAlertRulePatch",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/AlertRulePatchObject"
},
"description": "Parameters supplied to the operation."
}
],
"responses": {
"200": {
"description": "An existing Activity Log Alert rule was successfully updated.",
"schema": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Insights/activityLogAlerts": {
"get": {
"description": "Get a list of all Activity Log Alert rules in a subscription.",
"operationId": "ActivityLogAlerts_ListBySubscriptionId",
"x-ms-examples": {
"Get list of all Activity Log Alert rules under a subscription": {
"$ref": "./examples/ActivityLogAlertRule_ListBySubscriptionId.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The request succeeded.",
"schema": {
"$ref": "#/definitions/AlertRuleList"
}
},
"default": {
"description": "An error occurred and the list of Activity Log Alert rules could not be retrieved.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/activityLogAlerts": {
"get": {
"description": "Get a list of all Activity Log Alert rules in a resource group.",
"operationId": "ActivityLogAlerts_ListByResourceGroup",
"x-ms-examples": {
"List activity log alerts": {
"$ref": "./examples/ActivityLogAlertRule_ListByResourceGroupName.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The request succeeded.",
"schema": {
"$ref": "#/definitions/AlertRuleList"
}
},
"default": {
"description": "An error occurred and the list of Activity Log Alert rules could not be retrieved.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
}
},
"definitions": {
"AzureResource": {
"description": "An Azure resource object.",
"x-ms-azure-resource": true,
"type": "object",
"properties": {
"id": {
"description": "The resource Id.",
"type": "string",
"readOnly": true
},
"name": {
"description": "The name of the resource.",
"type": "string",
"readOnly": true
},
"type": {
"description": "The type of the resource.",
"type": "string",
"readOnly": true
},
"location": {
"description": "The location of the resource. Since Azure Activity Log Alerts is a global service, the location of the rules should always be 'global'.",
"type": "string",
"default": "global",
"x-ms-mutability": [
"read",
"create"
]
},
"tags": {
"description": "The tags of the resource.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"ActivityLogAlertResource": {
"description": "An Activity Log Alert rule resource.",
"allOf": [
{
"$ref": "#/definitions/AzureResource"
}
],
"properties": {
"properties": {
"description": "The Activity Log Alert rule properties of the resource.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AlertRuleProperties"
}
}
},
"AlertRuleList": {
"description": "A list of Activity Log Alert rules.",
"properties": {
"value": {
"description": "The list of Activity Log Alert rules.",
"type": "array",
"items": {
"$ref": "#/definitions/ActivityLogAlertResource"
}
},
"nextLink": {
"description": "Provides the link to retrieve the next set of elements.",
"type": "string"
}
}
},
"AlertRuleProperties": {
"description": "An Azure Activity Log Alert rule.",
"type": "object",
"properties": {
"scopes": {
"description": "A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.",
"type": "array",
"items": {
"type": "string"
}
},
"condition": {
"description": "The condition that will cause this alert to activate.",
"$ref": "#/definitions/AlertRuleAllOfCondition"
},
"actions": {
"description": "The actions that will activate when the condition is met.",
"$ref": "#/definitions/ActionList"
},
"enabled": {
"description": "Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.",
"type": "boolean",
"default": true
},
"description": {
"description": "A description of this Activity Log Alert rule.",
"type": "string"
}
},
"required": [
"scopes",
"condition",
"actions"
]
},
"AlertRuleAllOfCondition": {
"description": "An Activity Log Alert rule condition that is met when all its member conditions are met.",
"type": "object",
"properties": {
"allOf": {
"description": "The list of Activity Log Alert rule conditions.",
"type": "array",
"items": {
"$ref": "#/definitions/AlertRuleAnyOfOrLeafCondition"
}
}
},
"required": [
"allOf"
]
},
"AlertRuleAnyOfOrLeafCondition": {
"description": "An Activity Log Alert rule condition that is met when all its member conditions are met.\nEach condition can be of one of the following types:\n__Important__: Each type has its unique subset of properties. Properties from different types CANNOT exist in one condition.\n * __Leaf Condition -__ must contain 'field' and either 'equals' or 'containsAny'.\n _Please note, 'anyOf' should __not__ be set in a Leaf Condition._\n * __AnyOf Condition -__ must contain __only__ 'anyOf' (which is an array of Leaf Conditions).\n _Please note, 'field', 'equals' and 'containsAny' should __not__ be set in an AnyOf Condition._\n",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AlertRuleLeafCondition"
}
],
"properties": {
"anyOf": {
"title": "An Activity Log Alert rule 'anyOf' condition.",
"description": "An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.",
"type": "array",
"items": {
"$ref": "#/definitions/AlertRuleLeafCondition"
}
}
}
},
"AlertRuleLeafCondition": {
"description": "An Activity Log Alert rule condition that is met by comparing the field and value of an Activity Log event.\nThis condition must contain 'field' and either 'equals' or 'containsAny'.",
"type": "object",
"properties": {
"field": {
"description": "The name of the Activity Log event's field that this condition will examine.\nThe possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.",
"type": "string"
},
"equals": {
"description": "The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.",
"type": "string"
},
"containsAny": {
"description": "The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ActionList": {
"description": "A list of Activity Log Alert rule actions.",
"properties": {
"actionGroups": {
"description": "The list of the Action Groups.",
"type": "array",
"items": {
"$ref": "#/definitions/ActionGroup"
}
}
}
},
"ActionGroup": {
"description": "A pointer to an Azure Action Group.",
"properties": {
"actionGroupId": {
"description": "The resource ID of the Action Group. This cannot be null or empty.",
"type": "string"
},
"webhookProperties": {
"description": "the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"actionGroupId"
]
},
"AlertRulePatchObject": {
"description": "An Activity Log Alert rule object for the body of patch operations.",
"properties": {
"tags": {
"description": "The resource tags",
"additionalProperties": {
"type": "string"
}
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/AlertRulePatchProperties",
"description": "The activity log alert settings for an update operation."
}
}
},
"AlertRulePatchProperties": {
"description": "An Activity Log Alert rule properties for patch operations.",
"properties": {
"enabled": {
"description": "Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.",
"type": "boolean",
"default": true
}
}
},
"ErrorResponse": {
"description": "The error response.",
"type": "object",
"properties": {
"code": {
"description": "The error code.",
"type": "string",
"readOnly": true
},
"message": {
"description": "The error message indicating why the operation failed.",
"type": "string",
"readOnly": true
}
}
}
},
"parameters": {
"ActivityLogAlertNameParameter": {
"name": "activityLogAlertName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the Activity Log Alert rule.",
"x-ms-parameter-location": "method"
}
}
}